home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 6
/
Aminet 6 - June 1995.iso
/
Aminet
/
dev
/
e
/
capus2.lha
/
capus2
/
UserStartup
/
Sources
/
PModules.Lha
/
PModules
/
epp
/
exp.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-03-22
|
121 b
|
10 lines
OPT TURBO
PROC exp (n, p)
/* Computes n**p. */
DEF i, x = 1
FOR i := 1 TO p DO x := x * n
ENDPROC x
/* exp */